home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / frantic.swf / scripts / CMG_AS3 / ServerResponseEvent.as < prev    next >
Encoding:
Text File  |  2011-10-17  |  339 b   |  18 lines

  1. package CMG_AS3
  2. {
  3.    import flash.events.Event;
  4.    
  5.    public class ServerResponseEvent extends Event
  6.    {
  7.        
  8.       
  9.       public var returnCode:uint;
  10.       
  11.       public function ServerResponseEvent(param1:String, param2:uint)
  12.       {
  13.          super(param1,false,false);
  14.          returnCode = param2;
  15.       }
  16.    }
  17. }
  18.